﻿
.mayus {
    text-transform: uppercase;
}

body {
    font-size: 0.8rem !important;
}

.cursor-pointer {
    cursor: pointer;
}

.loader2 {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('/public/loading90red.gif') 50% 50% no-repeat rgb(20,20,28);
    opacity: .8;
}

.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('/public/progress.gif') 50% 50% no-repeat rgb(249,249,249);
    opacity: .8;
}


.tablainput td {
    position: relative;
}

    .tablainput td .inputtabla {
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        margin: 0;
        height: 100%;
        width: 100%;
        border: none;
        padding: 10px;
        box-sizing: border-box;
    }

/*BARRA DE PROGRESOS*/
.porcentaje {
    margin: 0;
    padding: 0;
    font-family: 'roboto',sans-serif;
}

svg {
    position: relative;
    width: 150px;
    height: 150px;
    z-index: 1000;
    color: white;
}

    svg circle {
        width: 100%;
        height: 100%;
        fill: none;
        stroke: none;
        stroke-width: 10;
        stroke-linecap: round;
        transform: translate(5px,5px);
    }

        svg circle:nth-child(2) {
            stroke-dasharray: 440;
            stroke-dashoffset: 440;
        }

.cardeficiencia:nth-child(1) svg circle:nth-child(2) {
    stroke-dashoffset: calc(440 - (440 * 100) / 100);
    stroke: #00ff43;
}

.cardeficacia:nth-child(2) svg circle:nth-child(2) {
    stroke-dashoffset: calc(440 - (440 * 26) / 100);
    stroke: #00a1ff;
}

.cardbody {
    display: flex;
    justify-content: center;
    align-items: center;
    /*min-height: 100vh;*/
}

.container {
    position: relative;
    width: auto;
    display: flex;
    justify-content: space-around;
    box-sizing: border-box;
}

.cardgrafico {
    position: relative;
    width: 250px;
    /*background: linear-gradient(0deg,rgb(249,249,249),rgb(249,249,249),rgb(249,249,249));*/
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    /*border-radius:0;*/
    border: 0;
    text-align: center;
    overflow: hidden;
    box-shadow: none;
    transition: 0.5s;
}

.container .cardgrafico:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,.5);
}

.container .card:before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    /*background: rgba(255,255,255,.3);*/
    pointer-events: none;
    z-index: 1;
}

.percent {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    /*box-shadow: inset 0 0 50px #000;*/
    z-index: 1000;
}

    .percent .number {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
    }

        .percent .number h2 {
            color: #777;
            font-weight: 700;
            font-size: 40px;
            transition: 0.5s;
        }

.cardgrafico:hover .percent .number h2 {
    color: black;
    font-size: 60px;
}

.percent .number h2 span {
    color: #777;
    font-size: 24px;
    transition: 0.5s;
}

.cardgrafico:hover .percent .number h2 span {
    color: black;
}

.text {
    position: relative;
    color: black;
    margin-top: 20px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.5s;
}

.cardgrafico:hover .text {
    color: black;
}

.container_cesar {
    margin: 0 auto;
    text-align: center;
}

.TextoTituloGraf {
    font-size: 24px;
    margin-bottom: 0;
    font-family: 'roboto',sans-serif;
}

.div-cirgrafico {
    padding-right: 40px;
    padding-left: 40px;
}

@media (min-width: 992px) {
    .div-cirgrafico {
        padding-top: 10%;
        padding-right: 30px;
        padding-left: 30px;
    }
}

@media (min-width: 1200px) {
    .div-cirgrafico {
        padding-top: 0%;
    }
}


.border-table {
    border: 1px solid #acb1b7 !important;
}

.border-table-right {
    border-right: 1px solid #acb1b7 !important;
}

.border-table-left {
    border-left: 1px solid #acb1b7 !important;
}